github.com/klauspost/compress/zstd.encoderState.nInput (field)

8 uses

	github.com/klauspost/compress/zstd (current package)
		encoder.go#L53: 	nInput           int64
		encoder.go#L129: 	s.nInput = 0
		encoder.go#L239: 			s.nInput += int64(len(s.filling))
		encoder.go#L291: 		s.nInput += int64(len(s.filling))
		encoder.go#L316: 	s.nInput += int64(len(s.current))
		encoder.go#L459: 		if len(s.filling) == 0 && !s.headerWritten && !s.eofWritten && s.nInput == 0 {
		encoder.go#L472: 		if s.nInput != s.frameContentSize {
		encoder.go#L473: 			return fmt.Errorf("frame content size %d given, but %d bytes was written", s.frameContentSize, s.nInput)